home *** CD-ROM | disk | FTP | other *** search
- # ========================================================
- # This is an example of a very simple project file
- # Unlike the make program that is included with Borland
- # products, this one isn't ass-backwards. Its simple
- # design requires that the first file needed to be
- # compiled be listed first. Just place your commands
- # in the order they are required and go.
- # ========================================================
- # any line beginning with "# " is a comment line and is ignored by UNITY
-
- # If SAMPLE.OBJ is older than SAMPLE.ASM it will be reassembled
- SAMPLE.OBJ sample.asm
- assemble /m sample
-
- # If SUNIT.TPU is older than SUNIT.PAS or SAMPLE.OBJ it will be recompiled
- SUNIT.TPU sunit.pas sample.obj
- compile /v sunit
-
- # If SAMPLE.EXE is older than SAMPLE.PAS or SUNIT.TPU it will be recompiled
- SAMPLE.EXE sample.pas sunit.tpu
- compile /v sunit
-